From 6f8cab0e9d67c917ed0b4355b2a6896238241d21 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Luk=C3=A1=C5=A1=20Tyrychtr?= Date: Fri, 16 Sep 2022 13:44:34 +0200 Subject: [PATCH] Style fix --- gtk/gtkstack.c | 2 +- gtk/gtkwidget.c | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/gtk/gtkstack.c b/gtk/gtkstack.c index e191d1252d..2d2de8990d 100644 --- a/gtk/gtkstack.c +++ b/gtk/gtkstack.c @@ -773,7 +773,7 @@ gtk_stack_accessible_get_child_at_index (GtkAccessible *accessible, guint index) } static void -gtk_stack_accessible_init(GtkAccessibleInterface *iface) +gtk_stack_accessible_init (GtkAccessibleInterface *iface) { iface->get_child_at_index = gtk_stack_accessible_get_child_at_index; } diff --git a/gtk/gtkwidget.c b/gtk/gtkwidget.c index 4f0c94dc62..115bef5826 100644 --- a/gtk/gtkwidget.c +++ b/gtk/gtkwidget.c @@ -8472,7 +8472,8 @@ gtk_widget_accessible_get_parent (GtkAccessible *self) } static GtkAccessible * -gtk_widget_accessible_get_child_at_index (GtkAccessible *self, guint index) +gtk_widget_accessible_get_child_at_index (GtkAccessible *self, + guint index) { guint idx = 0; GtkWidget *child; @@ -8488,7 +8489,12 @@ gtk_widget_accessible_get_child_at_index (GtkAccessible *self, guint index) } static gboolean -gtk_widget_accessible_get_bounds (GtkAccessible *self, int *x, int *y, int *width, int *height) { +gtk_widget_accessible_get_bounds (GtkAccessible *self, + int *x, + int *y, + int *width, + int *height) +{ GtkWidget *widget; GtkWidget *parent; double translated_x, translated_y; -- 2.30.2